home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snip9611.zip / INITVARS.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  269b  |  17 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. /*
  4. **  SNIPPETS header file for INITVARS.C
  5. */
  6.  
  7. #ifndef INITVARS__H
  8. #define INITVARS__H
  9.  
  10. #include <stdio.h>
  11.  
  12. #define LNSZ 256
  13.  
  14. int init_globals(FILE *fp, char *names, char *types, ...);
  15.  
  16. #endif /* INITVARS__H */
  17.